home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / docs / help / arexxbegin.lha / ARexx_For_Beginners / Articles_01-10 / Example10-4.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-08-02  |  128 b   |  8 lines

  1. /* Example10-4 */
  2.  
  3. SAY 'The 5 times table for decending even numbers'
  4.  
  5. DO x = 10 TO 1 BY -2
  6.    SAY 'Five times' x '=' x * 5
  7. END
  8.